Index: themer.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themer/themer.info,v
retrieving revision 1.6
diff -u -p -r1.6 themer.info
--- themer.info	7 Jul 2008 23:56:00 -0000	1.6
+++ themer.info	4 Dec 2008 01:52:24 -0000
@@ -2,4 +2,4 @@
 name = Themer
 description = Body classes and helpful theme utility functions 
 package = Themeing
-core = 6.x
\ No newline at end of file
+core = 6.x
Index: themer.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/themer/themer.module,v
retrieving revision 1.16
diff -u -p -r1.16 themer.module
--- themer.module	7 Jul 2008 23:56:00 -0000	1.16
+++ themer.module	4 Dec 2008 01:52:25 -0000
@@ -1,5 +1,4 @@
 <?php
-// $Id: themer.module,v 1.16 2008/07/07 23:56:00 tjholowaychuk Exp $
  
 /**
  * @file 
@@ -15,6 +14,20 @@
 ------------------------------------------------------------------ */
 
 /**
+ * Implementation of hook_init();
+ */
+function themer_init() {
+  // Clear the theme registry on every page load
+  if (module_exists('devel')) {
+    drupal_rebuild_theme_registry();
+    if (user_access('access devel information')) {
+      drupal_set_message('The Theme Registry was rebuilt');
+    }
+  }
+}
+
+
+/**
  * Implementation of hook_perm();
  */
 function themer_perm(){
